chore: use dyn InspectorExt in Backend#8919
Merged
Conversation
mattsse
approved these changes
Sep 21, 2024
rplusq
pushed a commit
to rplusq/foundry
that referenced
this pull request
Sep 25, 2024
ludamad
added a commit
to AztecProtocol/aztec-packages
that referenced
this pull request
Feb 9, 2026
…port Replace inline retry logic and direct forge calls with a standalone TypeScript wrapper script (l1-contracts/scripts/forge_broadcast.ts). Key behaviors: - --batch-size 8 to prevent forge broadcast hangs - External timeout (forge's --timeout is unreliable for broadcast hangs) - On anvil: detect via web3_clientVersion, retry from scratch on failure (anvil's auto-miner race condition strands txs in mempool) - On real chains: retry with --resume to pick up unmined transactions - Buffers stdout per attempt, only emits the successful attempt's output - Waits for stdout drain before exit to avoid pipe truncation References: - foundry-rs/foundry#6796 (batch size hang) - foundry-rs/foundry#8919 (anvil auto-miner race)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Gets rid of revm monomorphization of NoopInspector (1/6 in forge)